Package-level declarations

Types

Link copied to clipboard
sealed interface CompositingSupplier<T> : Supplier<T>

Supplier that composites two results together and supplies that result. May or may not be constant

Link copied to clipboard

Function that always returns the pre-computed stored result.

Link copied to clipboard

Predicate that always returns the boolean provided

Link copied to clipboard
open class ConstSupplier<T>(t: T) : Supplier<T>

Supplier that always returns the pre-computed stored result.

Link copied to clipboard
interface FunctionSupplier<T, R> : Function<T, R> , Supplier<R>

Interface that combines Function and Supplier

Link copied to clipboard

Both a supplier and function that uses a provided supplier of inputs to power the supplier output.